Add files via upload - #74
Merged
Merged
Conversation
Signed-off-by: Zyntro <zyntro.ai.studio@gmail.com>
|
|
||
|
|
||
| # --- Placeholders for the imports referenced above (wire up for real) ---- | ||
| async def create_session(): ... |
|
|
||
| # --- Placeholders for the imports referenced above (wire up for real) ---- | ||
| async def create_session(): ... | ||
| async def generate_embedding(text: str) -> list[float]: ... |
| # --- Placeholders for the imports referenced above (wire up for real) ---- | ||
| async def create_session(): ... | ||
| async def generate_embedding(text: str) -> list[float]: ... | ||
| async def upsert_embedding(doc_id: UUID, vector: list[float]) -> None: ... |
| async def create_session(): ... | ||
| async def generate_embedding(text: str) -> list[float]: ... | ||
| async def upsert_embedding(doc_id: UUID, vector: list[float]) -> None: ... | ||
| async def mark_doc_failed(doc_id: UUID, reason: str) -> None: ... |
zyntromedia
commented
Aug 29, 2026
zyntromedia
left a comment
Member
Author
There was a problem hiding this comment.
Approve by @zyntromedia
Verify by @ZyntroAI/crystal-plus
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.
feat(skills): add fastapi-research SKILL.md with endpoint conventions
Adds Claude Code skill defining Pydantic Create/Response split,
async route standards, DI, and background-task patterns for
FastAPI research endpoints. Scoped to api/, services/, research/,
models/, schemas/.
feat(skills): add langchain-research SKILL.md with RAG chain conventions
Adds Claude Code skill defining LCEL chain composition, prompt
decoupling, structured output via Pydantic parsers, and retry
handling for LangChain research pipelines. Scoped to chains/,
prompts/, vectorstores/.
docs(examples): add reference FastAPI endpoint for doc_embeddings ingestion
Illustrates fastapi-research skill conventions: async route,
BackgroundTasks for embedding generation, paginated list endpoint.
Not wired to real Supabase client yet — placeholders left for
create_session/generate_embedding/upsert_embedding.
docs(examples): add reference LangChain RAG chain for doc_embeddings
Illustrates langchain-research skill conventions: SupabaseVectorStore
retriever, PydanticOutputParser for structured answers, tenacity
retry wrapper. Pairs with the FastAPI ingestion example.
docs(examples): add reference LangChain RAG chain for doc_embeddings
Illustrates langchain-research skill conventions: SupabaseVectorStore
retriever, PydanticOutputParser for structured answers, tenacity
retry wrapper. Pairs with the FastAPI ingestion example.