Spaces:
Sleeping
Sleeping
File size: 1,466 Bytes
db97edf 570f099 db97edf 570f099 db97edf 570f099 db97edf 570f099 db97edf 570f099 db97edf 570f099 db97edf 570f099 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "v98KGZUT17EJ"
},
"outputs": [],
"source": [
"!wget https://github.com/yaleh/meta-prompt/raw/main/prompt_ui.py\n",
"!wget https://github.com/yaleh/meta-prompt/raw/main/default_meta_prompts.py"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "MO89Z8-UY5Ht"
},
"outputs": [],
"source": [
"!pip install gradio langchain scikit-learn openai"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "9BZL20lBYLbj"
},
"outputs": [],
"source": [
"import openai\n",
"import os\n",
"openai.api_key = ''\n",
"os.environ[\"OPENAI_API_KEY\"] = openai.api_key\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "Z8M3eFzXZaOb"
},
"outputs": [],
"source": [
"from prompt_ui import PromptUI\n",
"\n",
"app = PromptUI()\n",
"app.ui.queue().launch(debug=True)"
]
}
],
"metadata": {
"colab": {
"provenance": []
},
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
},
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|