Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 1 addition & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Python SDK/CLI for Truffle devices.
- validates and deploys apps from `truffile.yaml` (`validate`, `deploy`)
- manages installed apps (`list apps`, `delete`)
- talks to inference directly (`models`, `chat`)
- exposes an OpenAI-compatible local proxy (`proxy`)

## Start making your Own Apps

Expand Down Expand Up @@ -59,7 +58,6 @@ truffile list apps
truffile delete
truffile models
truffile chat
truffile proxy --host 127.0.0.1 --port 8080
```

In `truffile chat`, runtime controls are slash commands (not launch flags):
Expand All @@ -72,6 +70,7 @@ In `truffile chat`, runtime controls are slash commands (not launch flags):
- `/tools on|off`
- `/max_tokens <int>`, `/temperature <float|off>`, `/top_p <float|off>`, `/max_rounds <int>`
- `/models` to switch model
- `/attach <path-or-url>` to attach an image for the next user message (local path or `http(s)` URL)
- `/system <text|clear>`
- `/mcp connect <http(s)://...>`, `/mcp tools`, `/mcp status`, `/mcp disconnect`

Expand All @@ -85,20 +84,6 @@ CLI wrappers:
- `truffile models`
- `truffile chat` (streaming by default)

## Proxy

`truffile proxy` serves OpenAI-compatible routes locally and forwards to device IF2:

- `GET /v1/models`
- `POST /v1/chat/completions`

Default local base URL:
- `http://127.0.0.1:8080/v1`

Reasoning behavior:
- default: proxy can inject reasoning into `content` as `<think>...</think>`
- `--no-think-tags`: keeps reasoning separate as `reasoning_content` in stream deltas

## Proto Sync

Refresh vendored protos from firmware repo:
Expand Down
3 changes: 1 addition & 2 deletions app-store/kalshi/truffile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ metadata:
type: interval
interval:
duration: 30m
prod_duration: 60m
schedule:
daily_window: "00:00-23:59"
daily_window: "00:00-23:59"
foreground:
process:
cmd:
Expand Down
1 change: 0 additions & 1 deletion app-store/reddit/truffile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ metadata:
type: interval
interval:
duration: 60m
prod_duration: 60m
schedule:
daily_window: "00:00-23:59"
icon_file: ./icon.png
Expand Down
Loading
Loading