buerokratt / Training-Module

MIT License
2 stars 21 forks source link

REST service to delete a specified example in Rasa regex #129

Open turnerrainer opened 1 year ago

turnerrainer commented 1 year ago

AS AN Architect I WANT TO have a REST service to delete an existing Rasa regex SO THAT there wouldn't be any duplicate services for it

Acceptance Criteria

Examples

Input domain.yml

version: "3.0"
nlu:
- regex: asukoht
  examples: |
    - abja[- ]paluoja
    - antsla
    - elva
    - haapsalu

Output after a request to delete asukoht.elva

version: "3.0"
nlu:
- regex: asukoht
  examples: |
    - abja[- ]paluoja
    - antsla
    - haapsalu
janyprus commented 1 year ago

sample input for /rasa/regex/delete

{
    "regex_name": "asukoht",
    "example": "elva"
}
turnerrainer commented 1 year ago

@janyprus please provide a link to pull request(s).

janyprus commented 1 year ago

Pull request #194

ffrose commented 11 months ago

Bug described under task #107. Can start testing when it gets fixed.

ExiRain commented 11 months ago

After new Structure, new Pull Request

ffrose commented 10 months ago

Blocked because of #325. When adding new regex examples is possible, then we are able to test deleting.

ffrose commented 10 months ago

Works as intended. Able to delete a specified regex example.