1. Build a basic chatbot using Gemini 2.0 flash

This commit is contained in:
Julien
2025-09-24 13:45:00 +02:00
parent f15b420006
commit f76aad00ba
13 changed files with 280 additions and 2 deletions

10
tests/test_graph.py Normal file
View File

@@ -0,0 +1,10 @@
import unittest
from src.graph_builder import build_graph
class TestGraph(unittest.TestCase):
def test_graph_runs(self):
graph = build_graph()
self.assertIsNotNone(graph)
if __name__ == "__main__":
unittest.main()