-
Notifications
You must be signed in to change notification settings - Fork 100
Onboarding #1
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
Onboarding #1
Changes from 2 commits
c2805f6
54c8e14
0bec1fd
6f1443c
f1ee042
8eb807b
306d067
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,6 @@ | ||
| run: | ||
| python -m src.guidellm.main | ||
|
|
||
| install: | ||
| pip install -r requirements.txt | ||
|
|
||
|
|
@@ -13,7 +16,7 @@ quality: | |
| style: | ||
| ruff format src tests | ||
| isort src tests | ||
| flake8 src tests --max-line-length 88 | ||
| flake8 src tests | ||
|
|
||
| # test: | ||
| # pytest tests | ||
|
|
@@ -31,4 +34,11 @@ clean: | |
| rm -rf .mypy_cache | ||
| rm -rf .pytest_cache | ||
|
|
||
| .PHONY: install install-dev quality style test test-unit test-integration test-e2e test-smoke test-sanity test-regression build clean | ||
|
|
||
| fix: | ||
|
||
| python -m black src tests | ||
| python -m isort src tests | ||
| python -m ruff format src tests | ||
|
|
||
|
|
||
| .PHONY: run install install-dev quality style test test-unit test-integration test-e2e test-smoke test-sanity test-regression build clean fix | ||
parfeniuklits marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| from .base import Backend, BackendTypes, GenerativeResponse | ||
| from .base import Backend, BackendType, GenerativeResponse | ||
| from .openai import OpenAIBackend | ||
|
|
||
| __all__ = [ | ||
| "Backend", | ||
| "BackendTypes", | ||
| "BackendType", | ||
| "GenerativeResponse", | ||
| "OpenAIBackend", | ||
| ] |
Uh oh!
There was an error while loading. Please reload this page.