Ibentau / rasa-backend

⚙️ The rasa backend for the Ibentau chatbot
Apache License 2.0
0 stars 0 forks source link

Config Specification #1

Open Pixselve opened 1 year ago

Pixselve commented 1 year ago
{
  "event_start": "2019-01-01T00:00:00Z",
  "event_end": "2019-01-01T00:00:00Z",
  "talks": [
    {
      "speaker": "John Doe",
      "start": "2018-01-01T00:00:00Z",
      "end": "2018-01-01T00:00:00Z",
      "title": "Talk Title"
    }
  ]
}
Pixselve commented 1 year ago
{
  "event_start": "2019-01-01T00:00:00Z",
  "event_end": "2019-01-01T00:00:00Z",
  "talks": [
    {
      "speakers": ["John Doe", "Jane Doe"],
      "start": "2018-01-01T00:00:00Z",
      "end": "2018-01-01T00:00:00Z",
      "title": "Talk Title",
      "location": "A2",
      "article_url": "https://example.com/talk.html"
    }
  ],
  "address": "123 Main St, Anytown, USA"
}
Pixselve commented 1 year ago
{
  "event_start": "2023-06-05T00:00:00Z",
  "event_end": "2023-06-10T00:00:00Z",
  "talks": [
    {
      "speakers": [
        "Lukas Koedijk",
        "Ana Maria Oprescu"
      ],
      "start": "2023-06-06T09:30:00Z",
      "end": "2023-06-06T16:30:00Z",
      "title": "Finding Significant Differences in the Energy Consumption when Comparing Programming Languages and Programs.",
      "location": "B1",
      "article_url": "https://example.com/talk.html"
    },
    {
      "speakers": [
        "Aria Wilson",
        "David Chen"
      ],
      "start": "2023-06-07T10:00:00Z",
      "end": "2023-06-07T12:00:00Z",
      "title": "Exploring the Impact of Artificial Intelligence on Human Creativity and Innovation",
      "location": "A2",
      "article_url": "https://example.com/talk2.html"
    },
    {
      "speakers": [
        "Carlos Mendoza",
        "Emily Robertson"
      ],
      "start": "2023-06-07T13:00:00Z",
      "end": "2023-06-07T15:00:00Z",
      "title": "The Future of Blockchain Technology: Challenges, Opportunities, and Applications",
      "location": "C3",
      "article_url": "https://example.com/talk3.html"
    },
    {
      "speakers": [
        "Grace Thompson",
        "Alexander Smith"
      ],
      "start": "2023-06-08T09:00:00Z",
      "end": "2023-06-08T11:00:00Z",
      "title": "Investigating the Role of Quantum Computing in Cryptography and Security",
      "location": "D4",
      "article_url": "https://example.com/talk4.html"
    },
    {
      "speakers": [
        "Nora Jackson",
        "Samuel Lee"
      ],
      "start": "2023-06-08T14:00:00Z",
      "end": "2023-06-08T17:00:00Z",
      "title": "Advancements in Augmented Reality: Implications for Education and the Workforce",
      "location": "E5",
      "article_url": "https://example.com/talk5.html"
    },
    {
      "speakers": [
        "Mia Patel",
        "Ethan Brown"
      ],
      "start": "2023-06-09T10:30:00Z",
      "end": "2023-06-09T12:30:00Z",
      "title": "Harnessing the Power of Big Data: Strategies for Efficient Data Analysis and Visualization",
      "location": "F6",
      "article_url": "https://example.com/talk6.html"
    }
  ],
  "meals": [
    {
      "start": "2023-06-06T12:00:00Z",
      "end": "2023-06-06T13:00:00Z",
      "title": "Lunch",
      "location": "Cafeteria"
    },
    {
      "start": "2023-06-07T12:00:00Z",
      "end": "2023-06-07T13:00:00Z",
      "title": "Lunch",
      "location": "Cafeteria"
    },
    {
      "start": "2023-06-08T12:00:00Z",
      "end": "2023-06-08T13:00:00Z",
      "title": "Lunch",
      "location": "Cafeteria"
    },
    {
      "start": "2023-06-09T12:00:00Z",
      "end": "2023-06-09T13:00:00Z",
      "title": "Lunch",
      "location": "Cafeteria"
    }
  ],
  "address": "263 Av. Général Leclerc, 35000 Rennes"
}
Hikuluno commented 1 year ago

{ "event_start": "2023-06-05T00:00:00Z", "event_end": "2023-06-10T00:00:00Z", "address": "263 Av. Général Leclerc, 35000 Rennes" "reception": { "latitude": 48.1125, "longitude": -1.6819 } "mapLink" : "https://www.univ-rennes.fr/plan-du-campus-de-beaulieu" "talks": [ { "speakers": [ "Lukas Koedijk", "Ana Maria Oprescu" ], "start": "2023-06-06T09:30:00Z", "end": "2023-06-06T16:30:00Z", "title": "Finding Significant Differences in the Energy Consumption when Comparing Programming Languages and Programs.", "location": "B1", "article_url": "https://example.com/talk.html" }, { "speakers": [ "Aria Wilson", "David Chen" ], "start": "2023-06-07T10:00:00Z", "end": "2023-06-07T12:00:00Z", "title": "Exploring the Impact of Artificial Intelligence on Human Creativity and Innovation", "location": "A2", "article_url": "https://example.com/talk2.html" }, { "speakers": [ "Carlos Mendoza", "Emily Robertson" ], "start": "2023-06-07T13:00:00Z", "end": "2023-06-07T15:00:00Z", "title": "The Future of Blockchain Technology: Challenges, Opportunities, and Applications", "location": "C3", "article_url": "https://example.com/talk3.html" }, ], "meals": [ { "start": "2023-06-06T12:00:00Z", "end": "2023-06-06T13:00:00Z", "title": "Lunch", "location": "Cafeteria" }, { "start": "2023-06-07T12:00:00Z", "end": "2023-06-07T13:00:00Z", "title": "Lunch", "location": "Cafeteria" }, ],

}

Hikuluno commented 1 year ago

{ "event_start": "2023-06-05T00:00:00Z", "event_end": "2023-06-10T00:00:00Z", "address": "263 Av. Général Leclerc, 35000 Rennes" "reception": [ {"title": "SATELLITE RECEPTION", "start": "2022-10-25T00:00:00", "end": "2022-10-25T04:00:00", "location": "Microbrewery 3 Brasseurs",}, {"title": "SATELLITE RECEPTION", "start": "2022-10-25T00:00:00", "end": "2022-10-25T04:00:00", "location": "Microbrewery 3 Brasseurs",} ] "mapLink" : "https://www.univ-rennes.fr/plan-du-campus-de-beaulieu" "talks": [ { "speakers": [ "Lukas Koedijk", "Ana Maria Oprescu" ], "start": "2023-06-06T09:30:00Z", "end": "2023-06-06T16:30:00Z", "title": "Finding Significant Differences in the Energy Consumption when Comparing Programming Languages and Programs.", "location": "B1", "article_url": "https://example.com/talk.html" }, { "speakers": [ "Aria Wilson", "David Chen" ], "start": "2023-06-07T10:00:00Z", "end": "2023-06-07T12:00:00Z", "title": "Exploring the Impact of Artificial Intelligence on Human Creativity and Innovation", "location": "A2", "article_url": "https://example.com/talk2.html" }, { "speakers": [ "Carlos Mendoza", "Emily Robertson" ], "start": "2023-06-07T13:00:00Z", "end": "2023-06-07T15:00:00Z", "title": "The Future of Blockchain Technology: Challenges, Opportunities, and Applications", "location": "C3", "article_url": "https://example.com/talk3.html" }, ], "meals": [ { "start": "2023-06-06T12:00:00Z", "end": "2023-06-06T13:00:00Z", "title": "Lunch", "location": "Cafeteria" }, { "start": "2023-06-07T12:00:00Z", "end": "2023-06-07T13:00:00Z", "title": "Lunch", "location": "Cafeteria" }, ],

}