admin管理员组文章数量:1352177
Im triying to do a basic PyRIT project but im not able to use the AzureOpenAI with PyRIT.
I have this code woking, but not with PyRIT:
from openai import AzureOpenAI
client = AzureOpenAI(
api_key="myApiKey",
azure_endpoint="myEndpoint"
)
try:
response = client.chatpletions.create(
model="myModel",
messages=[
{"role": "system", "content": "You're a helpful assistant."},
{"role": "user", "content": "Hello, how are you?"}
],
temperature=0.0
)
print(response.choices[0].message.content)
except Exception as e:
print(f"Error: {e}")
This code works, but now i want to use PyRIT.
This is my PyRIT code:
from pyritmon import IN_MEMORY, initialize_pyrit
from pyrit.orchestrator import PromptSendingOrchestrator
from pyrit.prompt_target import OpenAIChatTarget
initialize_pyrit(memory_db_type=IN_MEMORY)
prompt = "Hello, how are you?"
target = OpenAIChatTarget(
endpoint="myEndpoint",
api_key="myApiKey"
)
orchestrator = PromptSendingOrchestrator(target)
response = await orchestrator.send_prompts_async(prompt_list=[prompt]) # type: ignore
await orchestrator.print_conversations_async() # type: ignore
This code always return this Exception: Error sending prompt with conversation ID: "anyConversationIDThere."
I tried different ways to connect with the API but always fails the code.
Any idea?
Im triying to do a basic PyRIT project but im not able to use the AzureOpenAI with PyRIT.
I have this code woking, but not with PyRIT:
from openai import AzureOpenAI
client = AzureOpenAI(
api_key="myApiKey",
azure_endpoint="myEndpoint"
)
try:
response = client.chatpletions.create(
model="myModel",
messages=[
{"role": "system", "content": "You're a helpful assistant."},
{"role": "user", "content": "Hello, how are you?"}
],
temperature=0.0
)
print(response.choices[0].message.content)
except Exception as e:
print(f"Error: {e}")
This code works, but now i want to use PyRIT.
This is my PyRIT code:
from pyritmon import IN_MEMORY, initialize_pyrit
from pyrit.orchestrator import PromptSendingOrchestrator
from pyrit.prompt_target import OpenAIChatTarget
initialize_pyrit(memory_db_type=IN_MEMORY)
prompt = "Hello, how are you?"
target = OpenAIChatTarget(
endpoint="myEndpoint",
api_key="myApiKey"
)
orchestrator = PromptSendingOrchestrator(target)
response = await orchestrator.send_prompts_async(prompt_list=[prompt]) # type: ignore
await orchestrator.print_conversations_async() # type: ignore
This code always return this Exception: Error sending prompt with conversation ID: "anyConversationIDThere."
I tried different ways to connect with the API but always fails the code.
Any idea?
Share Improve this question edited 2 days ago user30129718 asked Apr 1 at 8:25 user30129718user30129718 32 bronze badges New contributor user30129718 is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 3 |1 Answer
Reset to default 0When using Azure OpenAI with PyRIT, always ensure that the endpoint includes the custom Azure OpenAI subdomain and the correct API version.
https://<openaiName>.openai.azure/openai/deployments/<deploymentName>/chat/completions?api-version=2023-03-15-preview
I have tried the below code using PyRIT with correct endpoint and successfully got the output response.
Code :
import asyncio
from pyritmon import IN_MEMORY, initialize_pyrit
from pyrit.orchestrator import PromptSendingOrchestrator
from pyrit.prompt_target import OpenAIChatTarget
initialize_pyrit(memory_db_type=IN_MEMORY)
AZURE_OPENAI_ENDPOINT = "https://<openaiName>.openai.azure/"
DEPLOYMENT_NAME = "<modelName>"
API_VERSION = "2023-03-15-preview"
API_KEY = "<apiKey>"
target = OpenAIChatTarget(
endpoint=f"{AZURE_OPENAI_ENDPOINT}openai/deployments/{DEPLOYMENT_NAME}/chat/completions?api-version={API_VERSION}",
api_key=API_KEY
)
orchestrator = PromptSendingOrchestrator(target)
async def send_prompt(prompt: str):
""" Sends the prompt and returns the responses. """
try:
return await orchestrator.send_prompts_async(prompt_list=[prompt])
except Exception as e:
print(f"Error sending prompt: {e}")
return None
def extract_assistant_response(response):
""" Extracts and prints the assistant's response correctly. """
if not hasattr(response, "request_pieces"):
print("Unexpected response format:", response)
return
for piece in response.request_pieces:
if isinstance(piece, dict):
for key, value in piece.items():
if isinstance(value, str) and "assistant" in value.lower():
print(f"Assistant: {value}")
async def main():
""" Main function to send prompt and process responses. """
prompt = "Hello, how are you?"
responses = await send_prompt(prompt)
if responses:
for response in responses:
print(f"Debug Response: {response.__dict__}")
extract_assistant_response(response)
await orchestrator.print_conversations_async()
asyncio.run(main())
Output :
I successfully got the output response as shown below.
本文标签: pythonHow to call AzureOpenAI API with PyRITStack Overflow
版权声明:本文标题:python - How to call AzureOpenAI API with PyRIT? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743900114a2558521.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
api-version=2023-03-15-preview
. – Dasari Kamali Commented Apr 1 at 8:48