VenkyPas commited on
Commit
30a7949
·
1 Parent(s): e52a8fb

Extra message

Browse files
Files changed (2) hide show
  1. chainlit.md +3 -0
  2. test.py +10 -0
chainlit.md CHANGED
@@ -1,3 +1,6 @@
1
  # Beyond ChatGPT
2
 
3
  This Chainlit app was created following instructions from [this repository!](https://github.com/AI-Maker-Space/Beyond-ChatGPT)
 
 
 
 
1
  # Beyond ChatGPT
2
 
3
  This Chainlit app was created following instructions from [this repository!](https://github.com/AI-Maker-Space/Beyond-ChatGPT)
4
+
5
+ This is my attempt at providing a window into GPT Models. Use it similar to how you would play ChatGPT application.
6
+
test.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ a = 10
3
+ b = 15
4
+
5
+ print("%d + %d = %d" % (a, b, a+b))
6
+
7
+ print("%d / %d = %0.2f" % (b, a, b/a))
8
+
9
+
10
+ print("÷")