stahldot commited on
Commit
ea0d9c8
verified
1 Parent(s): 88a9708

Initialize BriefLoop organization profile space

Browse files
Files changed (2) hide show
  1. README.md +24 -10
  2. index.html +65 -17
README.md CHANGED
@@ -1,10 +1,24 @@
1
- ---
2
- title: README
3
- emoji: 馃彚
4
- colorFrom: green
5
- colorTo: yellow
6
- sdk: static
7
- pinned: false
8
- ---
9
-
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # BriefLoop
2
+
3
+ BriefLoop is an open-source workflow for accountable AI-assisted business
4
+ briefings.
5
+
6
+ It focuses on:
7
+
8
+ - source-backed claims
9
+ - claim ledgers
10
+ - quality gates
11
+ - audit trails
12
+ - reproducible sample runs
13
+ - evaluation packs for AI-generated briefs
14
+
15
+ BriefLoop is about traceability and process accountability, not semantic proof.
16
+
17
+ ## Links
18
+
19
+ - Website: https://briefloop.ai
20
+ - GitHub: https://github.com/Stahl-G/briefloop
21
+ - PyPI: https://pypi.org/project/briefloop/
22
+ - Contact: contact@briefloop.ai
23
+ - Demo Space: https://huggingface.co/spaces/briefloop/briefloop-demo
24
+
index.html CHANGED
@@ -1,19 +1,67 @@
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>BriefLoop</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
11
+ color: #172033;
12
+ background: #f7f7f4;
13
+ }
14
+ main {
15
+ max-width: 880px;
16
+ margin: 0 auto;
17
+ padding: 56px 24px;
18
+ }
19
+ h1 {
20
+ font-size: 44px;
21
+ margin: 0 0 12px;
22
+ }
23
+ p {
24
+ font-size: 18px;
25
+ line-height: 1.6;
26
+ }
27
+ ul {
28
+ line-height: 1.8;
29
+ }
30
+ a {
31
+ color: #1d5f8a;
32
+ }
33
+ .note {
34
+ margin-top: 28px;
35
+ padding: 16px 18px;
36
+ border-left: 4px solid #1d5f8a;
37
+ background: #ffffff;
38
+ }
39
+ </style>
40
+ </head>
41
+ <body>
42
+ <main>
43
+ <h1>BriefLoop</h1>
44
+ <p>
45
+ Open-source loop engineering for auditable AI-assisted business briefings.
46
+ </p>
47
+ <ul>
48
+ <li>Source-backed claims</li>
49
+ <li>Claim ledgers</li>
50
+ <li>Quality gates</li>
51
+ <li>Audit trails</li>
52
+ <li>Reproducible sample runs and evaluation packs</li>
53
+ </ul>
54
+ <div class="note">
55
+ BriefLoop targets traceability and process accountability. It is not a
56
+ truth proof engine and does not claim semantic proof.
57
+ </div>
58
+ <p>
59
+ <a href="https://briefloop.ai">Website</a> 路
60
+ <a href="https://github.com/Stahl-G/briefloop">GitHub</a> 路
61
+ <a href="https://pypi.org/project/briefloop/">PyPI</a> 路
62
+ <a href="https://huggingface.co/spaces/briefloop/briefloop-demo">Demo</a>
63
+ </p>
64
+ </main>
65
+ </body>
66
  </html>
67
+