This commit is contained in:
2026-04-21 13:32:09 +02:00
commit 380aee5d94
6 changed files with 1993 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv
.env
chroma/
.mcp.json
+1
View File
@@ -0,0 +1 @@
3.12
View File
+12
View File
@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def index() -> str:
return "Flask app is running"
if __name__ == "__main__":
app.run(debug=True)
+12
View File
@@ -0,0 +1,12 @@
[project]
name = "chroma"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"chromadb>=1.5.8",
"flask>=3.1.3",
"openai>=2.32.0",
"python-dotenv>=1.2.2",
]
Generated
+1952
View File
File diff suppressed because it is too large Load Diff