chore: bump smallestai minimum to >=4.4.6 across examples#48
Merged
Conversation
4.4.5 introduced a breaking rename in the Python SDK: SmallestAI(token=…) → SmallestAI(api_key=…) $SMALLEST_AI_TOKEN → $SMALLEST_API_KEY 4.4.6 is the follow-up that fixes the wire-test fixture and the auto-generated README/reference docs after the rename. Pinning to >=4.4.6 means the cookbook landing experience (pip install + read the README + run examples) is fully coherent. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
EntelligenceAI PR SummaryThis PR updates the
Confidence Score: 5/5 - Safe to MergeSafe to merge — this PR makes a straightforward dependency version bump across all 15 Key Findings:
|
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
Bump every
smallestai>=4.4.4pin to>=4.4.6across the rootrequirements.txtand all 14 per-examplerequirements.txtfiles.Why
The Python SDK shipped two back-to-back changes:
SmallestAI(token=…)→SmallestAI(api_key=…)and$SMALLEST_AI_TOKEN→$SMALLEST_API_KEY, aligning the auto-generated client with the helpers, the dashboard UI, and every.env.samplein this cookbook (see fern-demo/smallest-ai-python-sdk#60).README.md/reference.mdafter the rename (see fern-demo/smallest-ai-python-sdk#61).Pinning to
>=4.4.6means anyone runningpip install -r requirements.txton a cookbook example lands on the version where the rename is fully consistent — kwarg, env var, tests, README, and reference doc all agree.What changed
requirements.txt(root, common deps)voice-agents/{agent_with_tools,analytics,appointment_scheduler,background_agent,bank_csr,call_control,campaigns,form_filler,getting_started,inbound_ivr,interrupt_control,knowledge_base_rag,language_switching,observability}/requirements.txtAll 15 files now read
smallestai>=4.4.6.Test plan
grep -rn "smallestai>=4.4.4" .returns nothinggrep -rn "smallestai>=4.4.5" .returns nothingsmallestai>=4.4.6🤖 Generated with Claude Code