-
Notifications
You must be signed in to change notification settings - Fork 0
Prompt Library SDK - first pass #75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing Touches🧪 Generate Unit Tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
agentuity/server/prompts.py
Outdated
| InvalidPromptNameError: If the prompt name is invalid. | ||
| PromptExistsError: If the prompt already exists and force=False. | ||
| """ | ||
| with self.tracer.start_as_current_span("prompts.create") as span: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets use the same pattern as the other services for the span name agentuity.keyvalue.get so this would be agentuity.prompt.create
we should also maybe create a unique uuid for each prompt so we can reference that in the spans and then we can use that to associate different prompts to sessions in the backend.
|
closing in favor of #84 |
Add PromptLibrary for Simple Prompt Management
This PR introduces a new
PromptLibraryclass that provides comprehensive prompt management capabilities within the Agentuity SDK.Features Added
{{variable}}syntaxUsage
The
PromptLibraryis automatically available in your agent context:Integration
AgentContextascontext.promptsThis enables simple, version-controlled prompt management without external dependencies.