Skip to content

Commit d392387

Browse files
陈超涛gitee-org
authored andcommitted
!208 feat:意图ui功能
Merge pull request !208 from 余诗蕊/master
2 parents ad0f9d2 + d11126f commit d392387

File tree

346 files changed

+50319
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

346 files changed

+50319
-0
lines changed
Lines changed: 233 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,233 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# IDE Files
4+
.vscode/
5+
!.vscode/launch.json
6+
!.vscode/settings.json
7+
.idea/
8+
*.swp
9+
*.swo
10+
*~
11+
.serena/
12+
13+
# Dependencies
14+
node_modules/
15+
.pnp
16+
.pnp.js
17+
jspm_packages/
18+
bower_components/
19+
20+
# Build Output
21+
build/
22+
dist/
23+
out/
24+
.next/
25+
.swc/
26+
.nuxt/
27+
.output/
28+
.vuepress/dist/
29+
.temp/
30+
.cache/
31+
target/
32+
.turbo
33+
.pybuilder/
34+
*.egg-info/
35+
.installed.cfg
36+
*.egg
37+
@generated
38+
39+
# Testing
40+
coverage/
41+
.nyc_output/
42+
htmlcov/
43+
.tox/
44+
.nox/
45+
.coverage
46+
.coverage.*
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
.pytest_tmpdir_*
54+
test_data/
55+
test_results/
56+
test-run-comment.md
57+
58+
# Playwright
59+
/test-results/
60+
/playwright-report/
61+
/blob-report/
62+
/playwright/.cache/
63+
playwright-report/
64+
screenshots/
65+
66+
# Logs
67+
*.log
68+
npm-debug.log*
69+
yarn-debug.log*
70+
yarn-error.log*
71+
logs/
72+
app.log
73+
debug.log
74+
error.log
75+
menu-analysis.log
76+
*.log.*
77+
78+
# Environment Variables
79+
.env
80+
.env.local
81+
.env.development.local
82+
.env.test.local
83+
.env.production.local
84+
.env.bak
85+
.env.backup
86+
87+
# Python
88+
__pycache__/
89+
*.py[cod]
90+
*$py.class
91+
*.so
92+
.Python
93+
develop-eggs/
94+
downloads/
95+
eggs/
96+
.eggs/
97+
lib/
98+
lib64/
99+
parts/
100+
sdist/
101+
var/
102+
wheels/
103+
share/python-wheels/
104+
pip-wheel-metadata/
105+
MANIFEST
106+
*.manifest
107+
*.spec
108+
pip-log.txt
109+
pip-delete-this-directory.txt
110+
.ipynb_checkpoints
111+
profile_default/
112+
ipython_config.py
113+
.python-version
114+
Pipfile.lock
115+
poetry.lock
116+
__pypackages__/
117+
celerybeat-schedule
118+
celerybeat.pid
119+
*.sage.py
120+
env/
121+
venv/
122+
.venv/
123+
ENV/
124+
env.bak/
125+
venv.bak/
126+
.spyderproject
127+
.spyproject
128+
.ropeproject
129+
/site
130+
.mypy_cache/
131+
.dmypy.json
132+
dmypy.json
133+
.pyre/
134+
.pytype/
135+
cython_debug/
136+
*.pyc
137+
*.pyo
138+
*.pyd
139+
140+
# Database
141+
*.sqlite
142+
*.sqlite-shm
143+
*.sqlite-wal
144+
*.sqlite3
145+
*.sqlite3-journal
146+
*.qdrant
147+
148+
# Temporary Files
149+
tmp/
150+
temp/
151+
*.tmp
152+
*.temp
153+
.tmp/
154+
155+
# Data Files
156+
data/
157+
*.csv
158+
*.json.bak
159+
*.pickle
160+
*.pkl
161+
*.analysis.json
162+
progress.json
163+
results/
164+
examples/results/
165+
166+
# OS Generated Files
167+
.DS_Store
168+
.DS_Store?
169+
._*
170+
.Spotlight-V100
171+
.Trashes
172+
ehthumbs.db
173+
Thumbs.db
174+
*.pem
175+
176+
# Runtime Files
177+
*.pid
178+
*.tgz
179+
*.tar.gz
180+
.npm
181+
.node_repl_history
182+
.yarn-integrity
183+
184+
# Translations
185+
*.mo
186+
*.pot
187+
188+
# Documentation
189+
docs/_build/
190+
191+
# Frameworks & Tools
192+
.scrapy
193+
instance/
194+
.webassets-cache
195+
local_settings.py
196+
.grunt
197+
__snapshots__
198+
cdk_outputs.json
199+
**/.langgraph_api
200+
TODO.local.md
201+
publish-output.txt
202+
203+
# Vector Database & ML
204+
qdrant_storage/
205+
embeddings_cache/
206+
.cache/
207+
208+
# Lock Files
209+
*-lock.yaml
210+
*-lock.json
211+
212+
# Config Backups
213+
config.bak
214+
215+
# Docker
216+
docker-compose.override.yml
217+
.dockerignore
218+
219+
# Project Specific
220+
frontend/node_modules/
221+
frontend/dist/
222+
frontend/.next/
223+
frontend/.nuxt/
224+
frontend/.output/
225+
frontend/.vuepress/dist/
226+
frontend/.temp/
227+
frontend/.cache/
228+
backend/__pycache__/
229+
backend/*.pyc
230+
backend/dist/
231+
backend/build/
232+
backend/.env
233+
backend/.env.*
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
root: true,
3+
// This tells ESLint to load the config from the package `eslint-config-custom`
4+
extends: ["custom"],
5+
settings: {
6+
next: {
7+
rootDir: ["examples/*/"],
8+
},
9+
},
10+
};
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
auto-install-peers = true
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
README.md
2+
node_modules
3+
dist
4+
**/@generated
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "all",
4+
"singleQuote": false,
5+
"printWidth": 100,
6+
"tabWidth": 2
7+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"private": false,
3+
"scripts": {
4+
"build": "turbo build",
5+
"dev": "turbo dev --concurrency 14",
6+
"lint": "turbo lint",
7+
"clean": "turbo clean",
8+
"test": "turbo test",
9+
"docs": "echo 'Skipping docs generation'",
10+
"check-types": "turbo check-types",
11+
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
12+
"check-prettier": "prettier --check \"**/*.{ts,tsx,md}\"",
13+
"freshbuild": "pnpm -w clean && pnpm i && pnpm -w build",
14+
"precommit": "echo 'Skipping precommit hooks'",
15+
"prepublish": "turbo run build"
16+
},
17+
"devDependencies": {
18+
"@changesets/cli": "^2.27.10",
19+
"@types/node": "^18.11.17",
20+
"eslint": "^8.56.0",
21+
"glob": "^10.3.12",
22+
"install": "^0.13.0",
23+
"npm": "^10.7.0",
24+
"prettier": "^3.2.5",
25+
"prettier-plugin-tailwindcss": "^0.1.11",
26+
"ts-node": "^10.9.2",
27+
"turbo": "^2.0.6",
28+
"typescript": "^5.2.3"
29+
},
30+
"packageManager": "pnpm@9.5.0",
31+
"keywords": [
32+
"copilotkit",
33+
"copilot",
34+
"react",
35+
"nextjs",
36+
"nodejs",
37+
"ai",
38+
"assistant",
39+
"javascript",
40+
"automation",
41+
"textarea"
42+
],
43+
"name": "CopilotKit"
44+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# 服务器配置
2+
SERVER_PORT=8005
3+
4+
# DeepSeek 配置
5+
DEEPSEEK_API_KEY=your_deepseek_api_key_here
6+
DEEPSEEK_MODEL=deepseek-chat
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
fastapi>=0.100.0
2+
uvicorn[standard]>=0.23.0
3+
pydantic>=2.0.0
4+
python-dotenv>=1.0.0
5+
httpx[socks]>=0.24.0
6+
openai>=1.0.0
7+
aiofiles>=23.0.0
8+
python-multipart>=0.0.6
9+
structlog>=23.0.0
10+
sse-starlette>=2.0.0
11+
reactivex>=4.0.4
12+
aiohttp>=3.9.0
13+
jsonschema>=4.20.0
14+
requests>=2.31.0

0 commit comments

Comments
 (0)