Louis-François Bouchard Omar Solano commited on
Commit
ea99d8b
1 Parent(s): 0f06abd

Fixing typo and leak (#45)

Browse files

* Openai activeloop data (#37)

* adding openai and activeloop data

* fixing issues with names

* concurrency

* black

* black

* revert to gradio3.50 for concurrency

---------

Co-authored-by: Omar Solano <omar@designstripe.com>

* ensure gradio version for HF

* Updates to files

* Push to advanced rag course

* fixing typo

* ignore update

* remove json

---------

Co-authored-by: Omar Solano <omar@designstripe.com>

Files changed (3) hide show
  1. .gitignore +2 -0
  2. .vscode/launch.json +0 -18
  3. app.py +1 -1
.gitignore CHANGED
@@ -50,6 +50,8 @@ coverage.xml
50
  .hypothesis/
51
  .pytest_cache/
52
  cover/
 
 
53
 
54
  # Translations
55
  *.mo
 
50
  .hypothesis/
51
  .pytest_cache/
52
  cover/
53
+ .vscode/
54
+ .vscode
55
 
56
  # Translations
57
  *.mo
.vscode/launch.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "version": "0.2.0",
3
- "configurations": [
4
- {
5
- "name": "Python: App",
6
- "type": "python",
7
- "request": "launch",
8
- "program": "${workspaceFolder}/data/process_csvs_store.py",
9
- "console": "integratedTerminal",
10
- "justMyCode": false,
11
- "python": "/Users/louis/miniconda3/envs/buster/bin/python",
12
- "env": {
13
- "ACTIVELOOP_TOKEN": "eyJhbGciOiJIUzUxMiIsImlhdCI6MTY5Njc4MjIyMiwiZXhwIjoxNzI4NDA0NTk1fQ.eyJpZCI6Im9tYXJzb2xhbm8ifQ.BlvUc350-boJv4hnN67ksMgGSy7x4nAWcBO7R5RZ22Cw0ifR2AOmmM-RJutBWIspQDiegs03rJxXCCfprc6O_A",
14
- "OPENAI_API_KEY": "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"
15
- }
16
- }
17
- ]
18
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app.py CHANGED
@@ -23,7 +23,7 @@ CONCURRENCY_COUNT = int(os.getenv("CONCURRENCY_COUNT", 64))
23
 
24
  AVAILABLE_SOURCES_UI = [
25
  "Gen AI 360: LLMs",
26
- "Gen AU 360: Advanced RAG",
27
  "Gen AI 360: LangChain",
28
  "Towards AI Blog",
29
  "Activeloop Docs",
 
23
 
24
  AVAILABLE_SOURCES_UI = [
25
  "Gen AI 360: LLMs",
26
+ "Gen AI 360: Advanced RAG",
27
  "Gen AI 360: LangChain",
28
  "Towards AI Blog",
29
  "Activeloop Docs",