fix: default model asi1-mini → asi1, enhanced timeout guidance#30
Merged
Conversation
Per Fetch Innovation Labs feedback (Gautam Kumar): 1. Default model changed from asi1-mini to asi1 — aligns with FIL docs and community usage. asi1-mini remains available via --model flag. 2. Enhanced timeout guidance in troubleshooting docs: - Timeout cheat sheet with recommended --wait values per operation - Retry advice for transient failures - Streaming tip to avoid HTTP-level timeouts - Full script paths in code examples Files changed (10): - skills/asi1-chat/scripts/asi1_chat.py: DEFAULT_MODEL → "asi1" - skills/asi1-chat/SKILL.md: Updated all examples and descriptions - README.md: Updated skills table and quick-start example - CONTRIBUTING.md: Updated running-locally example - docs/api-reference.md: Updated API example and model list - docs/authentication.md: Updated curl example - docs/troubleshooting.md: Expanded timeout section with cheat sheet - examples/04-multi-agent-workflow.md: Updated model references - tests/test_integration.py: Uses default model (asi1) - CHANGELOG.md: Added unreleased entries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Per feedback from Fetch Innovation Labs (Gautam Kumar), this PR makes two changes:
1. Default model:
asi1-mini→asi1The FIL docs and community have standardized on
asi1as the default model. This PR updates:DEFAULT_MODELinasi1_chat.pyfrom"asi1-mini"to"asi1"asi1as the defaultasi1-miniremains available via--model asi1-minifor lower-latency use cases2. Enhanced timeout guidance
Gautam noted that timeout errors are a common issue. The troubleshooting docs now include:
--waitvalues per operation type--streamfor ASI:One to avoid HTTP-level timeoutsFiles changed (10)
skills/asi1-chat/scripts/asi1_chat.pyDEFAULT_MODEL = "asi1"skills/asi1-chat/SKILL.mdREADME.mdCONTRIBUTING.mddocs/api-reference.mddocs/authentication.mddocs/troubleshooting.mdexamples/04-multi-agent-workflow.mdtests/test_integration.pyCHANGELOG.mdTesting
asi1model responds correctly as defaultContext