mostafa-sh commited on
Commit
442d977
Β·
1 Parent(s): 6a54971

add initial files

Browse files
Files changed (3) hide show
  1. .gitignore +3 -0
  2. README.md +9 -4
  3. requirements.txt +5 -0
.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ __pycache__/
2
+ .devcontainer/
3
+ .streamlit/
README.md CHANGED
@@ -1,7 +1,7 @@
1
  ---
2
- title: Finite Element Method
3
- emoji: 🌍
4
- colorFrom: red
5
  colorTo: red
6
  sdk: streamlit
7
  sdk_version: 1.43.2
@@ -10,4 +10,9 @@ pinned: false
10
  short_description: AI-driven instructor for Finite Element Method (FEM) queries
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
1
  ---
2
+ title: AI-U finite element method
3
+ emoji: πŸ“š
4
+ colorFrom: blue
5
  colorTo: red
6
  sdk: streamlit
7
  sdk_version: 1.43.2
 
10
  short_description: AI-driven instructor for Finite Element Method (FEM) queries
11
  ---
12
 
13
+ # AI U
14
+ This Space is an AI-powered intructor that helps answer questions on Finite element method (FEM).
15
+
16
+ ## How to Use
17
+ 1. Enter your query in the input box.
18
+ 2. The assistant will respond in real time.
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ numpy==1.26.3
2
+ openai==1.57.0
3
+ sentence-transformers==2.7.0
4
+ streamlit==1.40.2
5
+ python-dotenv==1.0.1