mirror of
https://github.com/leejet/stable-diffusion.cpp.git
synced 2025-12-13 05:48:56 +00:00
9 lines
181 B
C++
9 lines
181 B
C++
#ifndef __TOKENIZE_UTIL__
|
|
#define __TOKENIZE_UTIL__
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
std::vector<std::string> token_split(const std::string& text);
|
|
|
|
#endif // __TOKENIZE_UTIL__
|