You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assistant = Dev.Dev("YOUR GOOGLE GEMINI API KEY") # You can leave this as it is if you don't want to use debug, generate and other generation tools of Dev
79
89
80
90
assistant.generate("write a python code which can print 0 to 100")
81
91
```
82
92
93
+
## For those who installed Dev using pip
94
+
95
+
```python
96
+
from Dev_Developer import Dev
97
+
98
+
assistant = Dev.Dev("YOUR GEMINI API KEY") # You can leave this as it is if you don't want to use debug, generate and other generation tools of Dev
99
+
100
+
assistant.generate("write a python code which can print 0 to 100")
101
+
```
102
+
103
+
## Important
104
+
105
+
**If you installed Dev through pip then import Developer and Manager like this:**
106
+
107
+
```python
108
+
from Dev_Developer.Dev import Dev
109
+
from Dev_Managers.User_manager importDB_manager
110
+
from Dev_Managers.Auth_manager import DevAuth
111
+
```
112
+
83
113
# Checkout Documentation of Dev
84
114
85
115
Click on this --> [Read Documentation](https://jovian.com/k-alam93899/Dev%20Documentation) link to read documentation of Dev
0 commit comments