Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maaaae/lyf-circle
https://github.com/maaaae/lyf-circle
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/maaaae/lyf-circle
- Owner: MAAAAE
- License: apache-2.0
- Created: 2024-10-28T19:09:40.000Z (21 days ago)
- Default Branch: main
- Last Pushed: 2024-10-28T19:24:39.000Z (21 days ago)
- Last Synced: 2024-10-28T20:22:21.377Z (21 days ago)
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lyf Circle
## description
> Our project uses AI to analyze user preferences and create social gatherings for hotel residents with similar interests. It automates event creation using shared hotel amenities and includes a chat function to strengthen the Lyf community
### key pages
### event detail
## features
1. registres via QR survey
2. matching and grouping users who have similar characteristics and hobbies Using **vector embedding**
3. generate and schedule create events in the context of users and hotel amenities using **gpt4o generative model**
4. social chat function
5. gallery that can upload pics for events# how to start locally?
## FE
```
cd lyf-circle-fe
npm install
npm run dev
```## BE
```
cd lyf-circle-be
vi README.md# for using openai
export SPRING_AI_OPENAI_API_KEY=
# for postgres vector and mongodb
docker compose up -dmvn clean install
mvn package -DskipTests
java -jar lyf-circle-0.0.1-SNAPSHOT.jar
```