Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
50cd661
feat: intial commit
diogoncalves Sep 27, 2024
8cd9590
feat: add api key to provider instantiation
diogoncalves Sep 28, 2024
f768760
feat: implementation of async chat with and without streaming
diogoncalves Oct 8, 2024
287e74a
feat: define output contract and make non stream really non stream
diogoncalves Oct 8, 2024
7a3c5d2
feat: add sync methods
diogoncalves Oct 8, 2024
09d2544
feat: adapt base class
diogoncalves Oct 8, 2024
2e183fe
fix: adapt notebook for new module
diogoncalves Oct 9, 2024
45e0cd2
chore: automate tests for developement
diogoncalves Oct 9, 2024
bcbf81f
feat: adapt anthropic
diogoncalves Oct 9, 2024
7222827
feat: adapt llama on azure
diogoncalves Oct 9, 2024
b00e036
fix: anthropic return
diogoncalves Oct 10, 2024
99cec02
feat: vertexai stream working
diogoncalves Oct 10, 2024
5694e6e
feat: openai, azure-openai, azure-llama
diogoncalves Oct 10, 2024
1f10b68
feat: openai, azure
diogoncalves Oct 10, 2024
1f41917
feat: implement vertexai
diogoncalves Oct 10, 2024
a70324a
feat: do not consider anthropic and ollama for now
diogoncalves Oct 10, 2024
89d74f4
feat: adapt proxy
diogoncalves Oct 15, 2024
b77aff2
feat: adapt proxy
diogoncalves Oct 16, 2024
98bb2af
feat: add chat_output_stream
diogoncalves Oct 16, 2024
c453d3d
feat: adapt for modularization
diogoncalves Oct 16, 2024
6df3cc0
chore: revert separate servers
diogoncalves Oct 16, 2024
0fe4427
feat: add basic tests
diogoncalves Oct 16, 2024
3338d09
feat: integrate logging
diogoncalves Oct 16, 2024
cad6ac3
feat: add example for logging
diogoncalves Oct 16, 2024
dd4d006
feat: integrate langchain agents and fix function calling
diogoncalves Oct 17, 2024
9bc4bd9
feat: integrate tool calling with parallel calls
diogoncalves Oct 17, 2024
c0ee9ac
chore: helpers
diogoncalves Oct 17, 2024
ed5e2fe
feat: make proxy and tracking optional on poetry
diogoncalves Oct 17, 2024
a57b04d
feat: remove modules and organize imports
diogoncalves Oct 17, 2024
006f666
feat: vertexai integated with tool calling
diogoncalves Oct 17, 2024
deae361
chore: format stuff
diogoncalves Oct 21, 2024
81a84c5
chore: format pre-commit
diogoncalves Oct 21, 2024
671b867
chore: isort flake8
diogoncalves Oct 21, 2024
1cc56d8
feat: change init client initiatialization
diogoncalves Oct 21, 2024
110c415
feat: move init client to init azure
diogoncalves Oct 21, 2024
63c86f4
chore: added config.yaml
diogoncalves Oct 21, 2024
3f95e29
feat: make dist work
diogoncalves Oct 21, 2024
ba04dc2
chore: updated readme
diogoncalves Oct 21, 2024
89a8d49
feat: add session_id
diogoncalves Oct 21, 2024
50520fa
feat: latest fixes and tracking improvement
diogoncalves Oct 21, 2024
e9f678f
fix: fixed vertexai function call
diogoncalves Oct 21, 2024
65f95b5
feat: separate server components
diogoncalves Oct 22, 2024
ef620a9
feat: dynamic api versioning
diogoncalves Oct 22, 2024
ae46be3
chore: format
diogoncalves Oct 22, 2024
62ab9b0
chore: add docstring to LLM
diogoncalves Oct 22, 2024
bde2fab
feat: automatically add a session_id to chatmodel
diogoncalves Oct 22, 2024
43ce01b
fix: server starter and remove prints
diogoncalves Oct 23, 2024
ed0fb1b
feat: async fix
diogoncalves Oct 24, 2024
dd1100b
chore: update tutorial langgraph
diogoncalves Oct 24, 2024
aa1483a
feat: organize session_id
diogoncalves Oct 24, 2024
1e7b280
feat: adapt builds to be standalone
diogoncalves Oct 24, 2024
f659fed
chore: running all integrations
diogoncalves Oct 24, 2024
3929d8e
fix: fix cli
diogoncalves Oct 24, 2024
659c0b8
feat: enable utc deprecated version for old python versions
diogoncalves Oct 24, 2024
812cb61
fix: datetime error on python3.10
diogoncalves Oct 25, 2024
8c61f9a
chore: format
diogoncalves Oct 25, 2024
ab8882d
fix: datetime
diogoncalves Oct 25, 2024
b64608a
[chore] 0.0.1b1
claudiolemos Oct 28, 2024
d51a5d1
Merge branch 'main' into feat/modularization_shift_and_lift
claudiolemos Oct 28, 2024
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
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ node_modules
# Environments
env
env3
.env
.env*
.env*.local
.venv
env/
venv/
.venv*
env*/
venv*/
ENV/
env.bak/
venv.bak/
Expand Down
36 changes: 15 additions & 21 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,43 +3,37 @@ repos:
rev: v4.4.0
hooks:
- id: trailing-whitespace
files: llmstudio/
exclude: ^llmstudio/ui/
files: libs/
- id: end-of-file-fixer
files: llmstudio/
exclude: ^llmstudio/ui/
files: libs/
- id: check-yaml
files: llmstudio/
exclude: ^llmstudio/ui/
files: libs/
- id: check-added-large-files
files: llmstudio/
exclude: ^llmstudio/ui/
files: libs/

- repo: https://github.com/psf/black
rev: 22.12.0
hooks:
- id: black
files: llmstudio/
exclude: ^llmstudio/ui/
files: libs/

- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
files: llmstudio/
exclude: ^llmstudio/ui/
files: libs/
args:
- "--profile=black"

- repo: https://github.com/myint/autoflake
rev: v1.4
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
hooks:
- id: autoflake
files: llmstudio/
exclude: ^llmstudio/ui/
files: libs/
exclude: 'libs/core/llmstudio_core/providers/__init__.py|libs/llmstudio/llmstudio/providers/__init__.py'
args:
# - --remove-all-unused-imports
- --recursive
- --remove-unused-variables
- --in-place
additional_dependencies: [flake8]
- --remove-all-unused-imports
- --recursive
- --remove-unused-variables
- --in-place
additional_dependencies: [flake8]
15 changes: 0 additions & 15 deletions Dockerfile

This file was deleted.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
start-db:
docker compose up --build
format:
pre-commit run --all-files
13 changes: 0 additions & 13 deletions docker-compose.yml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ description: "Let's have you setup LLMstudio"
Using it in a Python notebook is also fairly simple! Just run the following cell:

```python
from llmstudio import LLM
from llmstudio.providers import LLM
model = LLM("anthropic/claude-2.1")
model.chat("What are Large Language Models?")
```
Expand Down
242 changes: 0 additions & 242 deletions examples/01_intro_to_llmstudio.ipynb

This file was deleted.

Loading
Loading