alexchaomander commited on
Commit
dfe6cba
·
verified ·
1 Parent(s): 90f086c

Create Fide AI organization card

Browse files
Files changed (2) hide show
  1. README.md +32 -6
  2. index.html +19 -17
README.md CHANGED
@@ -1,10 +1,36 @@
1
  ---
2
- title: README
3
- emoji: 💻
4
- colorFrom: purple
5
- colorTo: red
6
  sdk: static
7
- pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Fide AI
 
 
 
3
  sdk: static
4
+ app_file: index.html
5
+ license: cc-by-4.0
6
+ short_description: Open research and benchmarks for faith-aware AI evaluation.
7
  ---
8
 
9
+ # Fide AI
10
+
11
+ Fide AI develops open research, benchmarks, and public standards for evaluating AI systems in faith, moral guidance, and pastoral-care-adjacent contexts.
12
+
13
+ Our work focuses on:
14
+
15
+ - theological triage and tradition-aware evaluation
16
+ - faith and moral guidance benchmarks
17
+ - structured harness design for safer AI behavior
18
+ - responsible-use standards for spiritually sensitive AI contexts
19
+
20
+ ## Projects
21
+
22
+ ### FMG-Bench
23
+
24
+ [FMG-Bench](https://huggingface.co/datasets/FideAI/fmg-bench) is the Faith & Moral Guidance Benchmark for evaluating large language models in theological triage and pastoral guidance contexts.
25
+
26
+ FMG-Bench tests whether models can distinguish between primary doctrine, secondary disagreement, lower-certainty theological questions, and pastoral application scenarios where safety, agency, and human referral matter.
27
+
28
+ ## Links
29
+
30
+ - Website: https://fideai.org
31
+ - GitHub: https://github.com/FideAI
32
+ - FMG-Bench GitHub: https://github.com/FideAI/fmg-bench
33
+
34
+ ## Responsible Use
35
+
36
+ Fide AI research is intended to make AI behavior in spiritually sensitive contexts visible, comparable, and reviewable. Our benchmarks do not certify pastoral authority, clinical safety, legal adequacy, or deployment readiness.
index.html CHANGED
@@ -1,19 +1,21 @@
1
  <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
19
  </html>
 
1
  <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>Fide AI</title>
7
+ <style>
8
+ body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; margin: 3rem auto; max-width: 760px; line-height: 1.6; padding: 0 1.25rem; color: #172033; }
9
+ a { color: #164ea6; }
10
+ </style>
11
+ </head>
12
+ <body>
13
+ <h1>Fide AI</h1>
14
+ <p>Open research and benchmarks for faith-aware AI evaluation.</p>
15
+ <ul>
16
+ <li><a href="https://huggingface.co/datasets/FideAI/fmg-bench">FMG-Bench dataset</a></li>
17
+ <li><a href="https://github.com/FideAI/fmg-bench">FMG-Bench GitHub</a></li>
18
+ <li><a href="https://fideai.org">Fide AI website</a></li>
19
+ </ul>
20
+ </body>
21
  </html>