Skip to content

Commit 142b2f5

Browse files
committed
run bedrock example
1 parent e3021eb commit 142b2f5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/run_example.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@
1616
"weaviate": False,
1717
"ollama": False,
1818
"groq": False,
19-
"autogen": True,
19+
"autogen": False,
2020
"vertexai": False,
2121
"gemini": False,
2222
"mistral": False,
23+
"awsbedrock": True,
2324
}
2425

2526
if ENABLED_EXAMPLES["anthropic"]:
@@ -123,3 +124,9 @@
123124

124125
print(Fore.BLUE + "Running Azure OpenAI example" + Fore.RESET)
125126
AzureOpenAIRunner().run()
127+
128+
if ENABLED_EXAMPLES["awsbedrock"]:
129+
from examples.awsbedrock_examples import AWSBedrockRunner
130+
131+
print(Fore.BLUE + "Running AWS Bedrock example" + Fore.RESET)
132+
AWSBedrockRunner().run()

0 commit comments

Comments
 (0)