Skip to content

Commit 2eb9f0e

Browse files
committed
init
1 parent f68fe4f commit 2eb9f0e

File tree

7 files changed

+93
-1
lines changed

7 files changed

+93
-1
lines changed

.github/workflows/deploy-gcs.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deploy to Google Cloud Storage
2+
3+
on:
4+
push:
5+
branches:
6+
- main # or your default branch
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v3
13+
- name: Set up Cloud SDK
14+
uses: google-github-actions/setup-gcloud@v1
15+
with:
16+
project_id: ${{ secrets.GCP_PROJECT_ID }}
17+
service_account_key: ${{ secrets.GCP_SA_KEY }}
18+
export_default_credentials: true
19+
- name: Upload to GCS
20+
run: |
21+
gsutil -m rsync -r ./docs gs://${{ secrets.GCS_BUCKET }}

.nojekyll

Whitespace-only changes.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright [2025] [Smartloop Inc.]
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Smartloop
2+
3+
An open-source and no-code Small Language Model platform to create domain specificlanguagemodel from custom source(s) , saving cost and energy while reducing hallucination.

_sidebar.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- [README](README.md)
2+
3+
- Docs
4+
- [Getting Started](docs/getting-started.md)

docs/getting-started.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Getting Started with SmartLoop
2+
3+
Welcome to SmartLoop! This guide will help you get started with creating conversational AI solutions using SmartLoop's platform.
4+
5+
## What is SmartLoop?
6+
7+
SmartLoop is a conversational AI platform that enables businesses to build, deploy, and manage chatbots and voice assistants. It provides tools for automating customer interactions, improving engagement, and driving conversions.
8+
9+
## Key Features
10+
11+
- **Drag-and-Drop Builder**: Easily design conversational flows without coding.
12+
- **Omnichannel Support**: Deploy bots across multiple platforms like Facebook Messenger, WhatsApp, and websites.
13+
- **AI-Powered Insights**: Analyze user interactions to optimize performance.
14+
- **Integration Options**: Connect with CRMs, APIs, and other tools.
15+
16+
## Getting Started
17+
18+
1. **Sign Up**: Create an account on [SmartLoop](https://smartloop.ai).
19+
2. **Create a New Bot**:
20+
- Log in to your dashboard.
21+
- Click on "Create New Bot" and choose a template or start from scratch.
22+
3. **Design Your Bot**:
23+
- Use the drag-and-drop builder to create conversational flows.
24+
- Add intents, responses, and actions to handle user queries.
25+
4. **Test Your Bot**:
26+
- Use the built-in testing tool to simulate conversations.
27+
- Refine the flow based on test results.
28+
5. **Deploy Your Bot**:
29+
- Publish your bot to your desired channels.
30+
- Monitor performance and make improvements as needed.
31+
32+
## Resources
33+
34+
- [SmartLoop Blog](https://smartloop.ai/blogs/overview): Learn more about conversational AI and best practices.
35+
- [Documentation](https://smartloop.ai/docs): Detailed guides and API references.
36+
- [Support](https://smartloop.ai/support): Contact the support team for assistance.
37+
38+
Start building smarter conversations today with SmartLoop!

index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Smartloop</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
<meta name="description" content="Enterprise SLM Platform">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
9+
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/buble.css">
10+
</head>
11+
<body>
12+
<div id="app"></div>
13+
<script>
14+
window.$docsify = {
15+
name: '',
16+
repo: '',
17+
loadsidebar: true,
18+
alias: {
19+
'/.*/_sidebar.md': '/_sidebar.md'
20+
}
21+
}
22+
</script>
23+
<!-- Docsify v4 -->
24+
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)