File size: 1,538 Bytes
825dc04
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6a2f664
9efb673
31df063
843d855
 
5fd94ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a926c23
 
be059e0
825dc04
c67ff96
825dc04
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
import openai
import numpy as np
import os
import gradio as gr
 
openai.api_key = os.environ["api_key"]
engine = os.environ["engine"]


def happytt(temperature,max_tokens,text): 

  response = openai.Completion.create(
    engine=engine,
    prompt=text,
    temperature=temperature,
    max_tokens=max_tokens,
    top_p=1,
    frequency_penalty=0,
    presence_penalty=0
  )

  return response.choices[0].text


title = "OpenAI Codex"
description = '''OpenAI Codex is an artificial intelligence model developed by OpenAI. 
It parses natural language and generates code in response. 
It is used to power GitHub Copilot, a programming autocompletion 
tool developed for  Code generation.

Try following prompts with """ included
 1)"""
Use transformers pipeline to create Question Answering System
"""
2)"""
Python program that sends an email to [email protected] saying "Hello, We are live now" from [email protected].
"""
3)"""
Write a program to scrap yahoo.com homepage using beautifulsoup
"""
4)"""
Use Spacy large model for Named Entity Recognition
"""
5)<!-- Create a registration web page using Bootstrap -->
<!DOCTYPE html>
6)"""
Write a program to scrap yahoo.com homepage using selenium and beautifulsoup
"""
'''
 
 
iface = gr.Interface( happytt,[ gr.inputs.Slider(0, 1, step=0.1),gr.inputs.Slider(150, 4000, step=1),
                               gr.inputs.Textbox(type='str',   
                                                 label="input prompt")],"text", title = title, description = description )
iface.launch(debug=True)