no create your own @Bot GPT 3.5

Sure, here's an example of a simple chatbot using the GPT-3.5 model:

```python
import openai

openai.api_key = 'Your API Key'

def chat_with_bot(message):
response = openai.Completion.create(
engine='text-davinci-003',
prompt=message,
max_tokens=50,
temperature=0.6
)
return response.choices[0].text.strip()

while True:
user_input = input("You: ")
if user_input.lower() == 'bye':
print("Bot: Goodbye!")
break
bot_response = chat_with_bot(user_input)
print("Bot:", bot_response)
```

To use this code:
1. Replace `'Your API Key'` with your actual OpenAI API key.
2. Install the `openai` Python library if you haven't already, using `pip install openai`.
3. Run the script.

This chatbot uses OpenAI's GPT-3.5 model to generate responses. It sends the user's message as a prompt to the API and receives a response in return. The response is then printed as the bot's reply.

Please note that GPT-3.5 is a fictional model and doesn't actually exist. This code is just an illustration of how you could create a chatbot using OpenAI's GPT models.