Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added local llm functionality by incorporating text-generation-webui #289

Merged
merged 37 commits into from
Jun 12, 2023
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
cf7a802
Added local llm functionality by incorporating text-generation-webui
sirajperson Jun 9, 2023
74b0696
Update docker-compose.yaml
sirajperson Jun 9, 2023
275f653
Update docker-compose.yaml
sirajperson Jun 9, 2023
ec94859
Update docker-compose.yaml
sirajperson Jun 9, 2023
dc6eaff
Adds support for searx search
alexkreidler Jun 9, 2023
488758f
Merge pull request #293 from alexkreidler/searx
Jun 10, 2023
669b037
Update json_cleaner.py
sirajperson Jun 10, 2023
35bb8ae
Update config_template.yaml
xutpuu Jun 10, 2023
b90b31b
Merge pull request #297 from xutpuu/patch-1
Jun 10, 2023
812e3cc
This commit makes local the OpenAI api the defualt LLM provider.
sirajperson Jun 10, 2023
e406d07
Merge remote-tracking branch 'origin/main'
sirajperson Jun 10, 2023
ed07ac3
Update docker-compose.yaml
sirajperson Jun 10, 2023
1b707d8
This commit makes local the OpenAI api the defualt LLM provider.
sirajperson Jun 10, 2023
a63a1d7
Add files via upload
sirajperson Jun 10, 2023
cf454b6
Add files via upload
sirajperson Jun 10, 2023
0668187
Resolved requirements.txt conflict
sirajperson Jun 10, 2023
fb9ac23
Resolved AgentCreate.js conflict
sirajperson Jun 10, 2023
37ef5b3
Update requirements.txt
sirajperson Jun 10, 2023
be01a9a
Update agent_executor.py
sirajperson Jun 10, 2023
2edf824
new file: tgwui/config/models/place-your-models-here.txt
sirajperson Jun 10, 2023
7aaeb97
docker-compose fix for podman (#302)
jpenalbae Jun 10, 2023
217a0b1
modified: config_template.yaml
sirajperson Jun 10, 2023
ffead61
Merge branch 'TransformerOptimus:main' into main
sirajperson Jun 10, 2023
15fcbba
partially fix typo, email attachment tool logic
pallasite99 Jun 11, 2023
8cb9e97
Merge pull request #310 from pallasite99/fix-typo-email-attachment-tool
Jun 11, 2023
9c8eab6
Added video
Akki-jain Jun 11, 2023
9a70a7d
Added video
Akki-jain Jun 11, 2023
c818926
Added Installation Video
Akki-jain Jun 11, 2023
8de9a18
Merge pull request #313 from TransformerOptimus/demo-video
Jun 11, 2023
1c134ab
Added new video
Akki-jain Jun 11, 2023
c29a7ae
Merge pull request #314 from TransformerOptimus/demo_video
Jun 11, 2023
50f6de7
Update agent_executor.py
iskandarreza Jun 11, 2023
ebec063
Merge pull request #315 from iskandarreza/typo-fix
Jun 11, 2023
567bba8
Update README.MD
FeelingAGIle Jun 11, 2023
e6cf271
Merge pull request #318 from TransformerOptimus/readme_removed_vid
eqxwow Jun 11, 2023
f133780
modified: docker-compose.yaml
sirajperson Jun 11, 2023
2c7ac53
Merge branch 'TransformerOptimus:main' into main
sirajperson Jun 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docker-compose.yaml
Additional generalized default device settings.
  • Loading branch information
sirajperson committed Jun 9, 2023
commit ec9485904c09f7d131539387c767714e5cd3ab74
2 changes: 2 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ services:
- LCL_SRC_DIR=text-generation-webui # Developers - see Dockerfile app_base
container_name: text-generation-webui
environment:
# for GPU off loading comment out the next line and uncomment the one after that. After building navigate to localhost:7860, and then click on model settings and adjust the threads and n-gpu-layer settings to match the host device.
- EXTRA_LAUNCH_ARGS="--chat --listen --verbose --extensions openai" # Custom launch args (e.g., --model MODEL_NAME)
# - EXTRA_LAUNCH_ARGS="--chat --listen --no-mmap --verbose --extensions openai --n-gpu-layers 15 --threads 4 --auto-devices" # Custom launch args (e.g., --model MODEL_NAME)
ports:
- 7860:7860 # Default web port
- 5000:5000 # Default API port
Expand Down