iqcraft/
│
├── iqcraft/
│ ├── __init__.py
│ ├── settings.py # database configuration, static file locations, other settings go here
│ ├── urls.py #
│ └── wsgi.py #
│
├── impart/
│ ├── migrations/
│ ├── static/ # common files that modify the appearance of the website
│ │ ├── css/
│ │ ├── js/
│ │ └── img/
│ │
│ ├── templates/
│ │ ├── base.html # simple page which imports the html css, parts common across website (header navigataion session etc)
│ │ ├── login.html # login page
│ │ ├── home.html # basic page that allows uploading documents
│ │ └── editor.html # the window where they can annotate model responses
│ │
│ ├── clients/
│ │ ├── __init__.py
│ │ └── clients.py # python code to connect to public AI providers to generate outputs
│ │
│ ├── __init__.py #
│ ├── admin.py #
│ ├── apps.py #
│ ├── models.py # classes to control updates to database
│ ├── tests.py #
│ └── views.py # website API endpoints
│
├── documents/ # uploaded files are saved in this folder
├── .env # file to store the environment variables #DO NOT COMMIT
│
└── manage.py
-
Notifications
You must be signed in to change notification settings - Fork 0
VediYD/iqcraft
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published