docs(adaptyv): standardize on ADAPTYV_API_KEY across examples#183
Closed
mvanhorn wants to merge 1 commit into
Closed
docs(adaptyv): standardize on ADAPTYV_API_KEY across examples#183mvanhorn wants to merge 1 commit into
mvanhorn wants to merge 1 commit into
Conversation
Fixes K-Dense-AI#182 The adaptyv SKILL.md tells code to read the API key from ADAPTYV_API_KEY (line 17), but the curl example exports FOUNDRY_API_TOKEN and the Python example calls FoundryClient with a hardcoded api_key="..." literal. That contradicts the secret-handling guidance the same file gives. Use ADAPTYV_API_KEY in both examples and have the Python example read both the key and the optional base URL from os.environ, matching the "Environment variables" block right above it. Pure docs change; no code changes.
Contributor
Author
|
The |
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.
Fixes #182.
scientific-skills/adaptyv/SKILL.mdtold code to read the API key fromADAPTYV_API_KEY(line 17), but two examples disagreed:FOUNDRY_API_TOKENand used$FOUNDRY_API_TOKENin the Authorization header.FoundryClient(api_key="...", ...)with a hardcoded literal placeholder, contradicting the env-var guidance.This PR makes both examples use
ADAPTYV_API_KEYdirectly:ADAPTYV_API_KEY.api_keyfromos.environ["ADAPTYV_API_KEY"]and falls back the base URL throughos.environ.get("ADAPTYV_API_URL", "https://foundry-api-public.adaptyvbio.com/api/v1"), matching the "Environment variables" block above it.Pure docs change. No code changes.
AI was used for assistance.