You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project uses [ruff](https://github.com/astral-sh/ruff) for both code formatting and linting. Before submitting a pull request, please ensure your code passes both checks:
19
+
20
+
```bash
21
+
# Check code formatting
22
+
uv run ruff format --check .
23
+
24
+
# Run linting checks
25
+
uv run ruff check .
26
+
27
+
# To automatically fix formatting issues
28
+
uv run ruff format .
29
+
30
+
# To automatically fix some linting issues
31
+
uv run ruff check --fix .
32
+
```
33
+
34
+
These checks are automatically run in CI for all pull requests. You can also install ruff as a pre-commit hook if desired.
35
+
16
36
Then follow the SkyPilot or Local Training instructions below.
17
37
18
38
> **Warning:** There is currently a bug with tool use functionality. The issue appears to be that vLLM does not return all the token log probabilities for tool use. Further investigation is needed to determine the exact cause. For now, teaching use case-specific tool use with non-tool use models is the recommended workaround.
0 commit comments