serverdaun commited on
Commit
9beee9d
·
0 Parent(s):

initial commit

Browse files
Files changed (6) hide show
  1. .gitignore +13 -0
  2. .python-version +1 -0
  3. README.md +0 -0
  4. main.py +6 -0
  5. pyproject.toml +12 -0
  6. uv.lock +0 -0
.gitignore ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+
12
+ # Environment variables
13
+ .env
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.12
README.md ADDED
File without changes
main.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def main():
2
+ print("Hello from ai-sidekick!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
pyproject.toml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "ai-sidekick"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = [
8
+ "gradio>=5.34.2",
9
+ "langchain>=0.3.26",
10
+ "langchain-community>=0.3.26",
11
+ "langgraph>=0.4.8",
12
+ ]
uv.lock ADDED
The diff for this file is too large to render. See raw diff