-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: adding aws controller for llm application #31
Merged
Conversation
This file contains 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
4 tasks
4 tasks
4 tasks
kkiani
force-pushed
the
feature/aws-llm-controller
branch
from
October 4, 2024 12:10
e4f8571
to
448d68a
Compare
bramelfrink
reviewed
Oct 7, 2024
Co-authored-by: Bram Elfrink <[email protected]>
Co-authored-by: Bram Elfrink <[email protected]>
kkiani
force-pushed
the
feature/aws-llm-controller
branch
from
October 7, 2024 11:24
53460e6
to
bbedd42
Compare
kkiani
force-pushed
the
feature/aws-llm-controller
branch
from
October 7, 2024 12:18
2d3b6aa
to
1a4baa5
Compare
shahinism
reviewed
Oct 7, 2024
shahinism
approved these changes
Oct 7, 2024
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.
This pull request introduces several new examples and enhancements for working with LLMs (Large Language Models) using different approaches and tools. The changes include new example projects, additional functionality for AWS controllers, and improvements to existing components and resources.
New Example Projects:
Dspy Application:
Pulumi.yaml
configuration for a minimal Dspy application.__main__.py
usingAwsDspyController
.applications.py
.AwsDspyController
incontroller.py
to manage Dspy applications.requirements.txt
with necessary dependencies.LLM with OpenAI Client:
Pulumi.yaml
configuration for an OpenAI client application.__main__.py
usingAwsLlmController
.requirements.txt
with necessary dependencies.LLM with Simple Requests:
Pulumi.yaml
configuration for a simple LLM application using open-source models.__main__.py
usingAwsLlmController
andrequests
library.requirements.txt
with necessary dependencies.Enhancements to AWS Controllers:
Base Controller Enhancements:
environment
andis_runtime_execution
properties tobase_controller.py
.LLM Controller:
LlmController
as a base class for LLM-related controllers.AwsLlmController
to manage AWS-specific LLM operations, including SSM parameter retrieval and OpenAI client integration.Improvements to AWS Resources: