성현 김 commited on
Commit
b49708b
·
0 Parent(s):

Initial commit: LangChain API for Midjourney prompt generation

Browse files
.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ chroma_db_data/** filter=lfs diff=lfs merge=lfs -text
Dockerfile ADDED
File without changes
README.md ADDED
File without changes
app/__init__.py ADDED
File without changes
app/main.py ADDED
File without changes
app/schemas.py ADDED
File without changes
chroma_db_data/4c4fb5fd-e28a-4152-8513-5ef09d65caa4/data_level0.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:767711a261fbe1ac48b175ed90bbb2797292031762e394da04a1c35c9be9b88f
3
+ size 25416000
chroma_db_data/4c4fb5fd-e28a-4152-8513-5ef09d65caa4/header.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35f7674b581ec971964bdb6b6ece1a03f902190ba54e386092dc94294270628a
3
+ size 100
chroma_db_data/4c4fb5fd-e28a-4152-8513-5ef09d65caa4/index_metadata.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d4c69e9e38699b7e371d0928c6497c87b9c2ddcd3de178d595c61c21c729447
3
+ size 346027
chroma_db_data/4c4fb5fd-e28a-4152-8513-5ef09d65caa4/length.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f04489f6a22ca108c399a1582bbbad3c063e80690101222bc06a081f3a6d0602
3
+ size 24000
chroma_db_data/4c4fb5fd-e28a-4152-8513-5ef09d65caa4/link_lists.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0d89ff5c56175c51546f16eb3493bd0e1d42e2c5dd083324fbd24eb631e4cad
3
+ size 51880
chroma_db_data/chroma.sqlite3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44a1e87a72eb1463651ca44db502455179bf6dd1dc84eba6b0971eb9dc8180e8
3
+ size 67272704
gitignore ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # .gitignore
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+ .Python
7
+ env/
8
+ venv/
9
+ .env
10
+ .DS_Store
11
+ *.log
12
+ # 로컬에서 생성될 수 있는 빌드 아티팩트
13
+ dist/
14
+ build/
15
+ *.egg-info/
16
+
17
+ # VSCode, IntelliJ 등 IDE 설정 파일
18
+ .vscode/
19
+ .idea/
20
+
21
+ # 만약 Chroma DB를 버전 관리에서 제외하고 싶다면 (매우 클 경우)
22
+ # 하지만 Docker 이미지에는 포함해야 하므로, Git LFS를 고려하거나,
23
+ # 이 프로젝트에서는 Docker 이미지에 직접 복사하므로 .gitignore에는 추가하지 않는 것이 나을 수 있습니다.
24
+ # 만약 로컬 테스트용으로만 DB를 두고 Space에서는 빈 DB로 시작하게 한다면 추가:
25
+ # chroma_db_data/
requirements.txt ADDED
File without changes